home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / chmod.c,v < prev    next >
Text File  |  1991-12-10  |  4KB  |  180 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.08.25.14.40.53;  author brent;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.19.14.31.04;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.12.10.15.41.32;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Re-implemented using the new Fs_SetAttr system call
  32. @
  33. text
  34. @/* 
  35.  * chmod.c --
  36.  *
  37.  *    Procedure to map from Unix chmod and fchmod system calls to Sprite.
  38.  *
  39.  * Copyright 1986 Regents of the University of California
  40.  * All rights reserved.
  41.  */
  42.  
  43. #ifndef lint
  44. static char rcsid[] = "$Header: chmod.c,v 1.1 88/06/19 14:31:04 ouster Exp $ SPRITE (Berkeley)";
  45. #endif not lint
  46.  
  47. #include "sprite.h"
  48. #include "fs.h"
  49.  
  50. #include "compatInt.h"
  51. #include <errno.h>
  52.  
  53.  
  54. /*
  55.  *----------------------------------------------------------------------
  56.  *
  57.  * chmod --
  58.  *
  59.  *    Procedure to map from Unix chmod system call to Sprite 
  60.  *    Fs_SetAttr system call.
  61.  *
  62.  * Results:
  63.  *      UNIX_SUCCESS    - the call was successful.
  64.  *      UNIX_ERROR      - the call was not successful.
  65.  *                        The actual error code stored in errno.
  66.  *
  67.  * Side effects:
  68.  *    The protection of the specified file is modified.
  69.  *
  70.  *----------------------------------------------------------------------
  71.  */
  72.  
  73. int
  74. chmod(path, mode)
  75.     char *path;
  76.     int mode;
  77. {
  78.     ReturnStatus status;    /* result returned by Sprite system calls */
  79.     Fs_Attributes attributes;    /* struct containing all file attributes,
  80.                  * only mode is looked at. */
  81.  
  82.     attributes.permissions = mode;
  83.     status = Fs_SetAttr(path,  FS_ATTRIB_FILE, &attributes, FS_SET_MODE);
  84.     if (status != SUCCESS) {
  85.     errno = Compat_MapCode(status);
  86.     return(UNIX_ERROR);
  87.     } else {
  88.     return(UNIX_SUCCESS);
  89.     }
  90. }
  91.  
  92. /*
  93.  *----------------------------------------------------------------------
  94.  *
  95.  * fchmod --
  96.  *
  97.  *    Procedure to map from Unix fchmod system call to Sprite 
  98.  *    Fs_SetAttributesID system call.
  99.  *
  100.  * Results:
  101.  *      UNIX_SUCCESS    - the call was successful.
  102.  *      UNIX_ERROR      - the call was not successful.
  103.  *                        The actual error code stored in errno.
  104.  *
  105.  * Side effects:
  106.  *    The protection of the specified file is modified.
  107.  *
  108.  *----------------------------------------------------------------------
  109.  */
  110.  
  111. int
  112. fchmod(fd, mode)
  113.     int fd;
  114.     int mode;
  115. {
  116.     ReturnStatus status;       /* result returned by Sprite system calls */
  117.     Fs_Attributes attributes;      /* struct containing all file attributes,
  118.                     * only mode is looked at. */
  119.  
  120.     attributes.permissions = mode;
  121.     status = Fs_SetAttrID(fd, &attributes, FS_SET_MODE);
  122.     if (status != SUCCESS) {
  123.     errno = Compat_MapCode(status);
  124.     return(UNIX_ERROR);
  125.     } else {
  126.     return(UNIX_SUCCESS);
  127.     }
  128. }
  129. @
  130.  
  131.  
  132. 1.2.1.1
  133. log
  134. @Initial branch for Sprite server.
  135. @
  136. text
  137. @d11 1
  138. a11 1
  139. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/chmod.c,v 1.2 88/08/25 14:40:53 brent Exp $ SPRITE (Berkeley)";
  140. @
  141.  
  142.  
  143. 1.1
  144. log
  145. @Initial revision
  146. @
  147. text
  148. @d11 1
  149. a11 1
  150. static char rcsid[] = "$Header: chmod.c,v 1.3 87/08/21 14:43:39 nelson Exp $ SPRITE (Berkeley)";
  151. d27 1
  152. a27 1
  153.  *    Fs_SetAttributes system call.
  154. d45 3
  155. a47 2
  156.     ReturnStatus status;       /* result returned by Sprite system calls */
  157.     Fs_Attributes attributes;  /* struct containing all file attributes */
  158. a48 5
  159.     status = Fs_GetAttributes(path, FS_ATTRIB_FILE, &attributes);
  160.     if (status != SUCCESS) {
  161.     errno = Compat_MapCode(status);
  162.     return(UNIX_ERROR);
  163.     }
  164. d50 1
  165. a50 1
  166.     status = Fs_SetAttributes(path,  FS_ATTRIB_FILE, &attributes);
  167. d84 2
  168. a85 1
  169.     Fs_Attributes attributes;      /* struct containing all file attributes */
  170. a86 5
  171.     status = Fs_GetAttributesID(fd, &attributes);
  172.     if (status != SUCCESS) {
  173.     errno = Compat_MapCode(status);
  174.     return(UNIX_ERROR);
  175.     }
  176. d88 1
  177. a88 1
  178.     status = Fs_SetAttributesID(fd, &attributes);
  179. @
  180.